which sshd
If no path is returned, SSH is not installed.
sudo apt update
sudo apt install openssh-server
sudo systemctl enable ssh
sudo systemctl start ssh
To check the status:
sudo systemctl status ssh
sudo ufw allow ssh
sudo ufw enable
sudo ufw status
ip a
Look for the IP under the network interface, such as eth0 or wlan0.
ssh username@192.168.x.x
Replace username
with your actual user and 192.168.x.x
with your device’s IP.